home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / email / Message.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  29KB  |  837 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Basic message object for the email package object model.'''
  5. import re
  6. import uu
  7. import binascii
  8. import warnings
  9. from cStringIO import StringIO
  10. from email import Utils
  11. from email import Errors
  12. from email import Charset
  13. SEMISPACE = '; '
  14. paramre = re.compile('\\s*;\\s*')
  15. tspecials = re.compile('[ \\(\\)<>@,;:\\\\"/\\[\\]\\?=]')
  16.  
  17. def _formatparam(param, value = None, quote = True):
  18.     '''Convenience function to format and return a key=value pair.
  19.  
  20.     This will quote the value if needed or if quote is true.
  21.     '''
  22.     if value is not None and len(value) > 0:
  23.         if isinstance(value, tuple):
  24.             param += '*'
  25.             value = Utils.encode_rfc2231(value[2], value[0], value[1])
  26.         
  27.         if quote or tspecials.search(value):
  28.             return '%s="%s"' % (param, Utils.quote(value))
  29.         else:
  30.             return '%s=%s' % (param, value)
  31.     else:
  32.         return param
  33.  
  34.  
  35. def _parseparam(s):
  36.     plist = []
  37.     while s[:1] == ';':
  38.         s = s[1:]
  39.         end = s.find(';')
  40.         while end > 0 and s.count('"', 0, end) % 2:
  41.             end = s.find(';', end + 1)
  42.         if end < 0:
  43.             end = len(s)
  44.         
  45.         f = s[:end]
  46.         if '=' in f:
  47.             i = f.index('=')
  48.             f = f[:i].strip().lower() + '=' + f[i + 1:].strip()
  49.         
  50.         plist.append(f.strip())
  51.         s = s[end:]
  52.     return plist
  53.  
  54.  
  55. def _unquotevalue(value):
  56.     if isinstance(value, tuple):
  57.         return (value[0], value[1], Utils.unquote(value[2]))
  58.     else:
  59.         return Utils.unquote(value)
  60.  
  61.  
  62. class Message:
  63.     """Basic message object.
  64.  
  65.     A message object is defined as something that has a bunch of RFC 2822
  66.     headers and a payload.  It may optionally have an envelope header
  67.     (a.k.a. Unix-From or From_ header).  If the message is a container (i.e. a
  68.     multipart or a message/rfc822), then the payload is a list of Message
  69.     objects, otherwise it is a string.
  70.  
  71.     Message objects implement part of the `mapping' interface, which assumes
  72.     there is exactly one occurrance of the header per message.  Some headers
  73.     do in fact appear multiple times (e.g. Received) and for those headers,
  74.     you must use the explicit API to set or get all the headers.  Not all of
  75.     the mapping methods are implemented.
  76.     """
  77.     
  78.     def __init__(self):
  79.         self._headers = []
  80.         self._unixfrom = None
  81.         self._payload = None
  82.         self._charset = None
  83.         self.preamble = None
  84.         self.epilogue = None
  85.         self.defects = []
  86.         self._default_type = 'text/plain'
  87.  
  88.     
  89.     def __str__(self):
  90.         '''Return the entire formatted message as a string.
  91.         This includes the headers, body, and envelope header.
  92.         '''
  93.         return self.as_string(unixfrom = True)
  94.  
  95.     
  96.     def as_string(self, unixfrom = False):
  97.         '''Return the entire formatted message as a string.
  98.         Optional `unixfrom\' when True, means include the Unix From_ envelope
  99.         header.
  100.  
  101.         This is a convenience method and may not generate the message exactly
  102.         as you intend because by default it mangles lines that begin with
  103.         "From ".  For more flexibility, use the flatten() method of a
  104.         Generator instance.
  105.         '''
  106.         Generator = Generator
  107.         import email.Generator
  108.         fp = StringIO()
  109.         g = Generator(fp)
  110.         g.flatten(self, unixfrom = unixfrom)
  111.         return fp.getvalue()
  112.  
  113.     
  114.     def is_multipart(self):
  115.         '''Return True if the message consists of multiple parts.'''
  116.         return isinstance(self._payload, list)
  117.  
  118.     
  119.     def set_unixfrom(self, unixfrom):
  120.         self._unixfrom = unixfrom
  121.  
  122.     
  123.     def get_unixfrom(self):
  124.         return self._unixfrom
  125.  
  126.     
  127.     def attach(self, payload):
  128.         '''Add the given payload to the current payload.
  129.  
  130.         The current payload will always be a list of objects after this method
  131.         is called.  If you want to set the payload to a scalar object, use
  132.         set_payload() instead.
  133.         '''
  134.         if self._payload is None:
  135.             self._payload = [
  136.                 payload]
  137.         else:
  138.             self._payload.append(payload)
  139.  
  140.     
  141.     def get_payload(self, i = None, decode = False):
  142.         """Return a reference to the payload.
  143.  
  144.         The payload will either be a list object or a string.  If you mutate
  145.         the list object, you modify the message's payload in place.  Optional
  146.         i returns that index into the payload.
  147.  
  148.         Optional decode is a flag indicating whether the payload should be
  149.         decoded or not, according to the Content-Transfer-Encoding header
  150.         (default is False).
  151.  
  152.         When True and the message is not a multipart, the payload will be
  153.         decoded if this header's value is `quoted-printable' or `base64'.  If
  154.         some other encoding is used, or the header is missing, or if the
  155.         payload has bogus data (i.e. bogus base64 or uuencoded data), the
  156.         payload is returned as-is.
  157.  
  158.         If the message is a multipart and the decode flag is True, then None
  159.         is returned.
  160.         """
  161.         if i is None:
  162.             payload = self._payload
  163.         elif not isinstance(self._payload, list):
  164.             raise TypeError('Expected list, got %s' % type(self._payload))
  165.         else:
  166.             payload = self._payload[i]
  167.         if decode:
  168.             if self.is_multipart():
  169.                 return None
  170.             
  171.             cte = self.get('content-transfer-encoding', '').lower()
  172.             None if cte == 'quoted-printable' else None<EXCEPTION MATCH>binascii.Error
  173.             if cte in ('x-uuencode', 'uuencode', 'uue', 'x-uue'):
  174.                 sfp = StringIO()
  175.                 
  176.                 try:
  177.                     uu.decode(StringIO(payload + '\n'), sfp)
  178.                     payload = sfp.getvalue()
  179.                 except uu.Error:
  180.                     return payload
  181.                 except:
  182.                     None<EXCEPTION MATCH>uu.Error
  183.                 
  184.  
  185.             None<EXCEPTION MATCH>uu.Error
  186.         
  187.         return payload
  188.  
  189.     
  190.     def set_payload(self, payload, charset = None):
  191.         """Set the payload to the given value.
  192.  
  193.         Optional charset sets the message's default character set.  See
  194.         set_charset() for details.
  195.         """
  196.         self._payload = payload
  197.         if charset is not None:
  198.             self.set_charset(charset)
  199.         
  200.  
  201.     
  202.     def set_charset(self, charset):
  203.         '''Set the charset of the payload to a given character set.
  204.  
  205.         charset can be a Charset instance, a string naming a character set, or
  206.         None.  If it is a string it will be converted to a Charset instance.
  207.         If charset is None, the charset parameter will be removed from the
  208.         Content-Type field.  Anything else will generate a TypeError.
  209.  
  210.         The message will be assumed to be of type text/* encoded with
  211.         charset.input_charset.  It will be converted to charset.output_charset
  212.         and encoded properly, if needed, when generating the plain text
  213.         representation of the message.  MIME headers (MIME-Version,
  214.         Content-Type, Content-Transfer-Encoding) will be added as needed.
  215.  
  216.         '''
  217.         if charset is None:
  218.             self.del_param('charset')
  219.             self._charset = None
  220.             return None
  221.         
  222.         if isinstance(charset, str):
  223.             charset = Charset.Charset(charset)
  224.         
  225.         if not isinstance(charset, Charset.Charset):
  226.             raise TypeError(charset)
  227.         
  228.         self._charset = charset
  229.         if not self.has_key('MIME-Version'):
  230.             self.add_header('MIME-Version', '1.0')
  231.         
  232.         if not self.has_key('Content-Type'):
  233.             self.add_header('Content-Type', 'text/plain', charset = charset.get_output_charset())
  234.         else:
  235.             self.set_param('charset', charset.get_output_charset())
  236.         if not self.has_key('Content-Transfer-Encoding'):
  237.             cte = charset.get_body_encoding()
  238.             
  239.             try:
  240.                 cte(self)
  241.             except TypeError:
  242.                 self.add_header('Content-Transfer-Encoding', cte)
  243.             except:
  244.                 None<EXCEPTION MATCH>TypeError
  245.             
  246.  
  247.         None<EXCEPTION MATCH>TypeError
  248.  
  249.     
  250.     def get_charset(self):
  251.         """Return the Charset instance associated with the message's payload.
  252.         """
  253.         return self._charset
  254.  
  255.     
  256.     def __len__(self):
  257.         '''Return the total number of headers, including duplicates.'''
  258.         return len(self._headers)
  259.  
  260.     
  261.     def __getitem__(self, name):
  262.         '''Get a header value.
  263.  
  264.         Return None if the header is missing instead of raising an exception.
  265.  
  266.         Note that if the header appeared multiple times, exactly which
  267.         occurrance gets returned is undefined.  Use get_all() to get all
  268.         the values matching a header field name.
  269.         '''
  270.         return self.get(name)
  271.  
  272.     
  273.     def __setitem__(self, name, val):
  274.         '''Set the value of a header.
  275.  
  276.         Note: this does not overwrite an existing header with the same field
  277.         name.  Use __delitem__() first to delete any existing headers.
  278.         '''
  279.         self._headers.append((name, val))
  280.  
  281.     
  282.     def __delitem__(self, name):
  283.         '''Delete all occurrences of a header, if present.
  284.  
  285.         Does not raise an exception if the header is missing.
  286.         '''
  287.         name = name.lower()
  288.         newheaders = []
  289.         for k, v in self._headers:
  290.             if k.lower() != name:
  291.                 newheaders.append((k, v))
  292.                 continue
  293.         
  294.         self._headers = newheaders
  295.  
  296.     
  297.     def __contains__(self, name):
  298.         return [] in [ k.lower() for k, v in self._headers ]
  299.  
  300.     
  301.     def has_key(self, name):
  302.         '''Return true if the message contains the header.'''
  303.         missing = object()
  304.         return self.get(name, missing) is not missing
  305.  
  306.     
  307.     def keys(self):
  308.         """Return a list of all the message's header field names.
  309.  
  310.         These will be sorted in the order they appeared in the original
  311.         message, or were added to the message, and may contain duplicates.
  312.         Any fields deleted and re-inserted are always appended to the header
  313.         list.
  314.         """
  315.         return [ k for k, v in self._headers ]
  316.  
  317.     
  318.     def values(self):
  319.         """Return a list of all the message's header values.
  320.  
  321.         These will be sorted in the order they appeared in the original
  322.         message, or were added to the message, and may contain duplicates.
  323.         Any fields deleted and re-inserted are always appended to the header
  324.         list.
  325.         """
  326.         return [ v for k, v in self._headers ]
  327.  
  328.     
  329.     def items(self):
  330.         """Get all the message's header fields and values.
  331.  
  332.         These will be sorted in the order they appeared in the original
  333.         message, or were added to the message, and may contain duplicates.
  334.         Any fields deleted and re-inserted are always appended to the header
  335.         list.
  336.         """
  337.         return self._headers[:]
  338.  
  339.     
  340.     def get(self, name, failobj = None):
  341.         '''Get a header value.
  342.  
  343.         Like __getitem__() but return failobj instead of None when the field
  344.         is missing.
  345.         '''
  346.         name = name.lower()
  347.         for k, v in self._headers:
  348.             if k.lower() == name:
  349.                 return v
  350.                 continue
  351.         
  352.         return failobj
  353.  
  354.     
  355.     def get_all(self, name, failobj = None):
  356.         '''Return a list of all the values for the named field.
  357.  
  358.         These will be sorted in the order they appeared in the original
  359.         message, and may contain duplicates.  Any fields deleted and
  360.         re-inserted are always appended to the header list.
  361.  
  362.         If no such fields exist, failobj is returned (defaults to None).
  363.         '''
  364.         values = []
  365.         name = name.lower()
  366.         for k, v in self._headers:
  367.             if k.lower() == name:
  368.                 values.append(v)
  369.                 continue
  370.         
  371.         if not values:
  372.             return failobj
  373.         
  374.         return values
  375.  
  376.     
  377.     def add_header(self, _name, _value, **_params):
  378.         '''Extended header setting.
  379.  
  380.         name is the header field to add.  keyword arguments can be used to set
  381.         additional parameters for the header field, with underscores converted
  382.         to dashes.  Normally the parameter will be added as key="value" unless
  383.         value is None, in which case only the key will be added.
  384.  
  385.         Example:
  386.  
  387.         msg.add_header(\'content-disposition\', \'attachment\', filename=\'bud.gif\')
  388.         '''
  389.         parts = []
  390.         for k, v in _params.items():
  391.             if v is None:
  392.                 parts.append(k.replace('_', '-'))
  393.                 continue
  394.             parts.append(_formatparam(k.replace('_', '-'), v))
  395.         
  396.         if _value is not None:
  397.             parts.insert(0, _value)
  398.         
  399.         self._headers.append((_name, SEMISPACE.join(parts)))
  400.  
  401.     
  402.     def replace_header(self, _name, _value):
  403.         '''Replace a header.
  404.  
  405.         Replace the first matching header found in the message, retaining
  406.         header order and case.  If no matching header was found, a KeyError is
  407.         raised.
  408.         '''
  409.         _name = _name.lower()
  410.         for k, v in zip(range(len(self._headers)), self._headers):
  411.             if k.lower() == _name:
  412.                 self._headers[i] = (k, _value)
  413.                 break
  414.                 continue
  415.         else:
  416.             raise KeyError(_name)
  417.  
  418.     
  419.     def get_type(self, failobj = None):
  420.         """Returns the message's content type.
  421.  
  422.         The returned string is coerced to lowercase and returned as a single
  423.         string of the form `maintype/subtype'.  If there was no Content-Type
  424.         header in the message, failobj is returned (defaults to None).
  425.         """
  426.         warnings.warn('get_type() deprecated; use get_content_type()', DeprecationWarning, 2)
  427.         missing = object()
  428.         value = self.get('content-type', missing)
  429.         if value is missing:
  430.             return failobj
  431.         
  432.         return paramre.split(value)[0].lower().strip()
  433.  
  434.     
  435.     def get_main_type(self, failobj = None):
  436.         """Return the message's main content type if present."""
  437.         warnings.warn('get_main_type() deprecated; use get_content_maintype()', DeprecationWarning, 2)
  438.         missing = object()
  439.         ctype = self.get_type(missing)
  440.         if ctype is missing:
  441.             return failobj
  442.         
  443.         if ctype.count('/') != 1:
  444.             return failobj
  445.         
  446.         return ctype.split('/')[0]
  447.  
  448.     
  449.     def get_subtype(self, failobj = None):
  450.         """Return the message's content subtype if present."""
  451.         warnings.warn('get_subtype() deprecated; use get_content_subtype()', DeprecationWarning, 2)
  452.         missing = object()
  453.         ctype = self.get_type(missing)
  454.         if ctype is missing:
  455.             return failobj
  456.         
  457.         if ctype.count('/') != 1:
  458.             return failobj
  459.         
  460.         return ctype.split('/')[1]
  461.  
  462.     
  463.     def get_content_type(self):
  464.         """Return the message's content type.
  465.  
  466.         The returned string is coerced to lower case of the form
  467.         `maintype/subtype'.  If there was no Content-Type header in the
  468.         message, the default type as given by get_default_type() will be
  469.         returned.  Since according to RFC 2045, messages always have a default
  470.         type this will always return a value.
  471.  
  472.         RFC 2045 defines a message's default type to be text/plain unless it
  473.         appears inside a multipart/digest container, in which case it would be
  474.         message/rfc822.
  475.         """
  476.         missing = object()
  477.         value = self.get('content-type', missing)
  478.         if value is missing:
  479.             return self.get_default_type()
  480.         
  481.         ctype = paramre.split(value)[0].lower().strip()
  482.         if ctype.count('/') != 1:
  483.             return 'text/plain'
  484.         
  485.         return ctype
  486.  
  487.     
  488.     def get_content_maintype(self):
  489.         """Return the message's main content type.
  490.  
  491.         This is the `maintype' part of the string returned by
  492.         get_content_type().
  493.         """
  494.         ctype = self.get_content_type()
  495.         return ctype.split('/')[0]
  496.  
  497.     
  498.     def get_content_subtype(self):
  499.         """Returns the message's sub-content type.
  500.  
  501.         This is the `subtype' part of the string returned by
  502.         get_content_type().
  503.         """
  504.         ctype = self.get_content_type()
  505.         return ctype.split('/')[1]
  506.  
  507.     
  508.     def get_default_type(self):
  509.         """Return the `default' content type.
  510.  
  511.         Most messages have a default content type of text/plain, except for
  512.         messages that are subparts of multipart/digest containers.  Such
  513.         subparts have a default content type of message/rfc822.
  514.         """
  515.         return self._default_type
  516.  
  517.     
  518.     def set_default_type(self, ctype):
  519.         '''Set the `default\' content type.
  520.  
  521.         ctype should be either "text/plain" or "message/rfc822", although this
  522.         is not enforced.  The default content type is not stored in the
  523.         Content-Type header.
  524.         '''
  525.         self._default_type = ctype
  526.  
  527.     
  528.     def _get_params_preserve(self, failobj, header):
  529.         missing = object()
  530.         value = self.get(header, missing)
  531.         if value is missing:
  532.             return failobj
  533.         
  534.         params = []
  535.         for p in _parseparam(';' + value):
  536.             
  537.             try:
  538.                 (name, val) = p.split('=', 1)
  539.                 name = name.strip()
  540.                 val = val.strip()
  541.             except ValueError:
  542.                 name = p.strip()
  543.                 val = ''
  544.  
  545.             params.append((name, val))
  546.         
  547.         params = Utils.decode_params(params)
  548.         return params
  549.  
  550.     
  551.     def get_params(self, failobj = None, header = 'content-type', unquote = True):
  552.         """Return the message's Content-Type parameters, as a list.
  553.  
  554.         The elements of the returned list are 2-tuples of key/value pairs, as
  555.         split on the `=' sign.  The left hand side of the `=' is the key,
  556.         while the right hand side is the value.  If there is no `=' sign in
  557.         the parameter the value is the empty string.  The value is as
  558.         described in the get_param() method.
  559.  
  560.         Optional failobj is the object to return if there is no Content-Type
  561.         header.  Optional header is the header to search instead of
  562.         Content-Type.  If unquote is True, the value is unquoted.
  563.         """
  564.         missing = object()
  565.         params = self._get_params_preserve(missing, header)
  566.         if params is missing:
  567.             return failobj
  568.         
  569.  
  570.     
  571.     def get_param(self, param, failobj = None, header = 'content-type', unquote = True):
  572.         """Return the parameter value if found in the Content-Type header.
  573.  
  574.         Optional failobj is the object to return if there is no Content-Type
  575.         header, or the Content-Type header has no such parameter.  Optional
  576.         header is the header to search instead of Content-Type.
  577.  
  578.         Parameter keys are always compared case insensitively.  The return
  579.         value can either be a string, or a 3-tuple if the parameter was RFC
  580.         2231 encoded.  When it's a 3-tuple, the elements of the value are of
  581.         the form (CHARSET, LANGUAGE, VALUE).  Note that both CHARSET and
  582.         LANGUAGE can be None, in which case you should consider VALUE to be
  583.         encoded in the us-ascii charset.  You can usually ignore LANGUAGE.
  584.  
  585.         Your application should be prepared to deal with 3-tuple return
  586.         values, and can convert the parameter to a Unicode string like so:
  587.  
  588.             param = msg.get_param('foo')
  589.             if isinstance(param, tuple):
  590.                 param = unicode(param[2], param[0] or 'us-ascii')
  591.  
  592.         In any case, the parameter value (either the returned string, or the
  593.         VALUE item in the 3-tuple) is always unquoted, unless unquote is set
  594.         to False.
  595.         """
  596.         if not self.has_key(header):
  597.             return failobj
  598.         
  599.         for k, v in self._get_params_preserve(failobj, header):
  600.             if k.lower() == param.lower():
  601.                 if unquote:
  602.                     return _unquotevalue(v)
  603.                 else:
  604.                     return v
  605.             unquote
  606.         
  607.         return failobj
  608.  
  609.     
  610.     def set_param(self, param, value, header = 'Content-Type', requote = True, charset = None, language = ''):
  611.         '''Set a parameter in the Content-Type header.
  612.  
  613.         If the parameter already exists in the header, its value will be
  614.         replaced with the new value.
  615.  
  616.         If header is Content-Type and has not yet been defined for this
  617.         message, it will be set to "text/plain" and the new parameter and
  618.         value will be appended as per RFC 2045.
  619.  
  620.         An alternate header can specified in the header argument, and all
  621.         parameters will be quoted as necessary unless requote is False.
  622.  
  623.         If charset is specified, the parameter will be encoded according to RFC
  624.         2231.  Optional language specifies the RFC 2231 language, defaulting
  625.         to the empty string.  Both charset and language should be strings.
  626.         '''
  627.         if not isinstance(value, tuple) and charset:
  628.             value = (charset, language, value)
  629.         
  630.         if not self.has_key(header) and header.lower() == 'content-type':
  631.             ctype = 'text/plain'
  632.         else:
  633.             ctype = self.get(header)
  634.         if not self.get_param(param, header = header):
  635.             if not ctype:
  636.                 ctype = _formatparam(param, value, requote)
  637.             else:
  638.                 ctype = SEMISPACE.join([
  639.                     ctype,
  640.                     _formatparam(param, value, requote)])
  641.         else:
  642.             ctype = ''
  643.             for old_param, old_value in self.get_params(header = header, unquote = requote):
  644.                 append_param = ''
  645.                 if old_param.lower() == param.lower():
  646.                     append_param = _formatparam(param, value, requote)
  647.                 else:
  648.                     append_param = _formatparam(old_param, old_value, requote)
  649.                 if not ctype:
  650.                     ctype = append_param
  651.                     continue
  652.                 ctype = SEMISPACE.join([
  653.                     ctype,
  654.                     append_param])
  655.             
  656.         if ctype != self.get(header):
  657.             del self[header]
  658.             self[header] = ctype
  659.         
  660.  
  661.     
  662.     def del_param(self, param, header = 'content-type', requote = True):
  663.         '''Remove the given parameter completely from the Content-Type header.
  664.  
  665.         The header will be re-written in place without the parameter or its
  666.         value. All values will be quoted as necessary unless requote is
  667.         False.  Optional header specifies an alternative to the Content-Type
  668.         header.
  669.         '''
  670.         if not self.has_key(header):
  671.             return None
  672.         
  673.         new_ctype = ''
  674.         for p, v in self.get_params(header = header, unquote = requote):
  675.             if p.lower() != param.lower():
  676.                 if not new_ctype:
  677.                     new_ctype = _formatparam(p, v, requote)
  678.                 else:
  679.                     new_ctype = SEMISPACE.join([
  680.                         new_ctype,
  681.                         _formatparam(p, v, requote)])
  682.             new_ctype
  683.         
  684.         if new_ctype != self.get(header):
  685.             del self[header]
  686.             self[header] = new_ctype
  687.         
  688.  
  689.     
  690.     def set_type(self, type, header = 'Content-Type', requote = True):
  691.         '''Set the main type and subtype for the Content-Type header.
  692.  
  693.         type must be a string in the form "maintype/subtype", otherwise a
  694.         ValueError is raised.
  695.  
  696.         This method replaces the Content-Type header, keeping all the
  697.         parameters in place.  If requote is False, this leaves the existing
  698.         header\'s quoting as is.  Otherwise, the parameters will be quoted (the
  699.         default).
  700.  
  701.         An alternative header can be specified in the header argument.  When
  702.         the Content-Type header is set, we\'ll always also add a MIME-Version
  703.         header.
  704.         '''
  705.         if not type.count('/') == 1:
  706.             raise ValueError
  707.         
  708.         if header.lower() == 'content-type':
  709.             del self['mime-version']
  710.             self['MIME-Version'] = '1.0'
  711.         
  712.         if not self.has_key(header):
  713.             self[header] = type
  714.             return None
  715.         
  716.         params = self.get_params(header = header, unquote = requote)
  717.         del self[header]
  718.         self[header] = type
  719.         for p, v in params[1:]:
  720.             self.set_param(p, v, header, requote)
  721.         
  722.  
  723.     
  724.     def get_filename(self, failobj = None):
  725.         """Return the filename associated with the payload if present.
  726.  
  727.         The filename is extracted from the Content-Disposition header's
  728.         `filename' parameter, and it is unquoted.
  729.         """
  730.         missing = object()
  731.         filename = self.get_param('filename', missing, 'content-disposition')
  732.         if filename is missing:
  733.             return failobj
  734.         
  735.         return Utils.collapse_rfc2231_value(filename).strip()
  736.  
  737.     
  738.     def get_boundary(self, failobj = None):
  739.         """Return the boundary associated with the payload if present.
  740.  
  741.         The boundary is extracted from the Content-Type header's `boundary'
  742.         parameter, and it is unquoted.
  743.         """
  744.         missing = object()
  745.         boundary = self.get_param('boundary', missing)
  746.         if boundary is missing:
  747.             return failobj
  748.         
  749.         return Utils.collapse_rfc2231_value(boundary).rstrip()
  750.  
  751.     
  752.     def set_boundary(self, boundary):
  753.         """Set the boundary parameter in Content-Type to 'boundary'.
  754.  
  755.         This is subtly different than deleting the Content-Type header and
  756.         adding a new one with a new boundary parameter via add_header().  The
  757.         main difference is that using the set_boundary() method preserves the
  758.         order of the Content-Type header in the original message.
  759.  
  760.         HeaderParseError is raised if the message has no Content-Type header.
  761.         """
  762.         missing = object()
  763.         params = self._get_params_preserve(missing, 'content-type')
  764.         if params is missing:
  765.             raise Errors.HeaderParseError, 'No Content-Type header found'
  766.         
  767.         newparams = []
  768.         foundp = False
  769.         for pk, pv in params:
  770.             if pk.lower() == 'boundary':
  771.                 newparams.append(('boundary', '"%s"' % boundary))
  772.                 foundp = True
  773.                 continue
  774.             newparams.append((pk, pv))
  775.         
  776.         if not foundp:
  777.             newparams.append(('boundary', '"%s"' % boundary))
  778.         
  779.         newheaders = []
  780.         for h, v in self._headers:
  781.             if h.lower() == 'content-type':
  782.                 parts = []
  783.                 for k, v in newparams:
  784.                     if v == '':
  785.                         parts.append(k)
  786.                         continue
  787.                     parts.append('%s=%s' % (k, v))
  788.                 
  789.                 newheaders.append((h, SEMISPACE.join(parts)))
  790.                 continue
  791.             newheaders.append((h, v))
  792.         
  793.         self._headers = newheaders
  794.  
  795.     
  796.     def get_content_charset(self, failobj = None):
  797.         '''Return the charset parameter of the Content-Type header.
  798.  
  799.         The returned string is always coerced to lower case.  If there is no
  800.         Content-Type header, or if that header has no charset parameter,
  801.         failobj is returned.
  802.         '''
  803.         missing = object()
  804.         charset = self.get_param('charset', missing)
  805.         if charset is missing:
  806.             return failobj
  807.         
  808.         if isinstance(charset, tuple):
  809.             if not charset[0]:
  810.                 pass
  811.             pcharset = 'us-ascii'
  812.             charset = unicode(charset[2], pcharset).encode('us-ascii')
  813.         
  814.         return charset.lower()
  815.  
  816.     
  817.     def get_charsets(self, failobj = None):
  818.         '''Return a list containing the charset(s) used in this message.
  819.  
  820.         The returned list of items describes the Content-Type headers\'
  821.         charset parameter for this message and all the subparts in its
  822.         payload.
  823.  
  824.         Each item will either be a string (the value of the charset parameter
  825.         in the Content-Type header of that part) or the value of the
  826.         \'failobj\' parameter (defaults to None), if the part does not have a
  827.         main MIME type of "text", or the charset is not defined.
  828.  
  829.         The list will contain one string for each part of the message, plus
  830.         one for the container message (i.e. self), so that a non-multipart
  831.         message will still return a list of length 1.
  832.         '''
  833.         return [ part.get_content_charset(failobj) for part in self.walk() ]
  834.  
  835.     from email.Iterators import walk
  836.  
  837.